home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
misc
/
xes120.lha
/
XES
/
REXX
/
LoadStack.xdme
< prev
next >
Wrap
Text File
|
1994-11-09
|
279b
|
18 lines
/* loadstack.xdme */
parse arg v file
file = strip(file)
xcom = "purgevar" v
xcom
call open(input,file,"R")
do forever
line = "(" || readln(input) || ")"
if eof(input) then leave
xcom = "set" v line "pushvar" v
xcom
end
xcom = "popvar" v
xcom
call close(input)